{% extends "base.html" %} {% block title %}Rejected Doctors - Admin Panel{% endblock %} {% block content %}

Rejected Doctors

View rejected doctor registrations

Back to Dashboard
{% if rejected_doctors %}
Rejected Doctors ({{ rejected_doctors|length }})
{% for doctor in rejected_doctors %} {% endfor %}
Doctor Specialization PMC Code Appeal Count Rejection Date Status Actions
{{ doctor.user.name[0].upper() }}
{{ doctor.user.name }}
{{ doctor.user.email }}
{{ doctor.specialization }} {{ doctor.pmc_code }} {{ doctor.appeal_count }} {% if doctor.rejection_date %} {{ doctor.rejection_date.strftime('%B %d, %Y at %I:%M:%S %p') }} {% else %} N/A {% endif %} {% if doctor.appeal_count >= 3 %} Suspended {% else %} Can Appeal {% endif %}
View Details {% if doctor.appeal_count < 3 %} {% endif %}
{% else %}
No Rejected Doctors

All doctor registrations have been approved.

View All Doctors
{% endif %}
{% for doctor in rejected_doctors %} {% if doctor.appeal_count < 3 %} {% endif %} {% endfor %} {% endblock %}